home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 12 - 1996 / 12.11 Nov 96 / DebuggingStarter Code / DebuggingStarter.prefix < prev    next >
Encoding:
Text File  |  1996-09-09  |  479 b   |  23 lines  |  [TEXT/CWIE]

  1. /*———————————————————————————————————————————————————————————————————————————————————————
  2.     DebuggingStarter.prefix
  3.     
  4.     Prefix file that should be #included by all files.
  5. ———————————————————————————————————————————————————————————————————————————————————————*/
  6.  
  7.  
  8. #ifdef __MWERKS__
  9.     #if powerc
  10.         #include    <MacHeadersPPC>
  11.     #else
  12.         #include    <MacHeaders68K>
  13.     #endif
  14. #endif
  15.  
  16. #define DEBUG        1    // 1 is on, 0 off
  17.  
  18.  
  19. #define USE_DEBUG_TRAPS        1
  20. #define USE_DEBUG_LEAKS        1
  21.  
  22. #include    "Debug.h"
  23.